home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Scene 96
/
Scene 96 International Edition (Zyklop Software) (Disc 2) (1997).iso
/
misc
/
coding
/
xmasspak
/
tales
/
print_s.inc
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
1995-12-30
|
510 b
|
30 lines
;
; PRINT_SCROLL = shows the scrollies on the screen
;
;
;
print_scroll: mov cx,80
psc2: push cx
push di
mov cx,16/2
psc1: mov ax,[ds:si]
mov [es:di],al
mov [es:di+80],ah
add di,160
add si,2
dec cx
jnz psc1
pop di
pop cx
inc di
dec cx
jnz psc2
ret